home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / crc113.zip / FILE.H < prev    next >
Text File  |  1990-01-02  |  270b  |  14 lines

  1. #define READ_ONLY   0   /* file open access modes */
  2. #define WRITE_ONLY  1
  3. #define READ_WRITE  2
  4.  
  5. int file_open(char *pn);
  6.  
  7. int file_close(int fd);
  8.  
  9. int rdbin(int fd, char *buf, int count);
  10.  
  11. int get_curr_dir(int drive, char *dir);
  12.  
  13. void get_path(char *s);
  14.